HTML(六)表格 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>TableStudy</title> </head> <body> <!--表格 table 行 tr 列 td --> <table bo ...
分类:
Web程序 时间:
2021-04-06 14:03:52
阅读次数:
0
##第一部分Mem行: total 内存总数: 15.7G used 已经使用的内存数: 15.6G free 空闲的内存数: 93M shared 当前已经废弃不用,总是0 buffers Buffer 缓存内存数: 298M cached Page 缓存内存数:14G 对操作系统来讲是Mem的参 ...
分类:
其他好文 时间:
2021-04-05 11:44:12
阅读次数:
0
生成证书 脚本内容 #!/bin/bash #简介 echo " " echo "作者:leidazhuang" echo "时间:2021/4/1" echo "本脚本用于生成httpd证书" echo " " #变量 hostname=192.168.110.40 #删除 rm -rf /etc ...
分类:
其他好文 时间:
2021-04-02 13:32:28
阅读次数:
0
linux命令出现dquote怎么办? 在用echo编写sh文件内容时,出现以下情况: 导致这个问题的原因是:命令没有输完 解决方法: 需要输入“,然后回车即可 如果仍然不行,可能是在权限中只有rw读写,但没有执行的权限,需要用chmod添加权限 这样就可以继续啦~ 2021-04-01 19:18 ...
分类:
系统相关 时间:
2021-04-02 13:14:21
阅读次数:
0
https://blog.csdn.net/weixin_33672109/article/details/92378342 #!/bin/bash if [ "$#" -ne 2 ] ; then echo "USAGE: $0 -f server_list_file cmd" exit -1 f ...
分类:
系统相关 时间:
2021-04-02 13:01:20
阅读次数:
0
export function createRulesByForm(form = {}, rules = [ { required: true, message: '这项是必填的', trigger: 'blur' }, { required: true, message: '这项是必填的', tr ...
分类:
其他好文 时间:
2021-04-01 13:42:50
阅读次数:
0
#include <linux/module.h> // module_init module_exit #include <linux/init.h> // __init __exit #include <linux/cdev.h> #include <linux/fs.h> #define MY ...
分类:
其他好文 时间:
2021-04-01 13:34:35
阅读次数:
0
1 MySQL 1.1 安装 在root用户权限下 # 创建mysql用户和用户组,同时禁止登陆 shell> groupadd mysql shell> useradd -r -g mysql -s /bin/false mysql # tar解压mysql压缩包,同时把他移到你向安装的位置 sh ...
分类:
数据库 时间:
2021-04-01 13:30:26
阅读次数:
0
shell编程实现创建新用户和打包文件 1、shell编程创建新用户 #! /bin/bash `useradd $1` `echo $2 | passwd --stdin $1` 假设这个文件的名称为test.sh,则操作方式为: ./test.sh admin 123456 其中1参为用户名,2 ...
分类:
系统相关 时间:
2021-03-31 12:11:52
阅读次数:
0
vi readreply.sh #!/bin/bash#第一部分 echo -n "What is your name?"readecho "Your name is $REPLY" #已将变量的值从标准输入读到REPLY #第二部分echo -n "What is the name of your ...
分类:
系统相关 时间:
2021-03-30 13:53:42
阅读次数:
0